home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000441_news@columbia.edu_Tue May 23 14:25:46 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19129
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Tue, 23 May 1995 10:26:05 -0400
  3. Received: by apakabar.cc.columbia.edu id AA08682
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Tue, 23 May 1995 10:25:54 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: MAIL command of MSKERMIT 3.14
  9. Date: 23 May 1995 14:25:46 GMT
  10. Organization: Columbia University
  11. Lines: 26
  12. Message-Id: <3psr9a$8es@apakabar.cc.columbia.edu>
  13. References: <Pine.PCW.3.91.950517154012.5391B-100000@moggie.acs.wmich.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <Pine.PCW.3.91.950517154012.5391B-100000@moggie.acs.wmich.edu>,
  18. John D. Tucker <tucker@mickey.acs.wmich.edu> wrote:
  19. : Under MSKERMIT version 3.13 (patch level 21), I could issue a command of
  20. :           mail  c:\$temp$\bmail.*  john.tucker@wmich.edu
  21. : and all BMAIL files would be mailed.  The BMAIL files would be parts 
  22. : 1 to N parts of a UUENCODED binary.  This works successfully.
  23. : Under MSKERMIT version 3.14 (patch level 3), issuing the same command 
  24. : results in a report of all parts being successfully mailed but 
  25. : only part 1 is received.
  26. This appears to be a bug in MS-DOS Kermit 3.14.  It will be fixed either
  27. in a patch or, if that is not possible, in the next release.  Meanwhile,
  28. you can work around it like this:
  29.  
  30.   set count \ffiles(c:\$temp$\bmail.*)
  31.   assign \%i 1
  32.   :loop
  33.   mail c:\$temp$\bmail.\%i fdc 
  34.   increment \%i
  35.   if count goto loop
  36.   finish
  37.  
  38. to send bmail.1 through bmail.n.  The other Kermit must be in server mode.
  39.  
  40. - Frank